home *** CD-ROM | disk | FTP | other *** search
XSetup plugin | 2000-08-07 | 1.4 KB | 54 lines |
- "FILE"="Xteq Systems X-Setup Plugin 5.0"
- "TYPE"="6"
- "COUNT"="1"
- "UIPATH"="Internet\Instant Messaging\Yahoo Messenger"
- "NAME"="General Settings"
- "VERSION"="1.09"
- "LANGUAGE"="VBScript"
- "TEXT 1"=""RETURN" sends new message"
- "DESCRIPTION 1"="This setting determines if Yahoo! Messenger drops to the next line in Instant Message windows when ENTER or RETURN is pressed."
- "DESCRIPTION 2"="If checked, the ENTER or RETURN key will send what you have typed immediately. If unchecked, it will drop to the next line."
- "DESCRIPTION 3"="Select your preference by checking or unchecking the box above and clicking 'Apply Changes.'"
- "DESCRIPTION 4"="Yahoo! Messenger may be obtained at http://messenger.yahoo.com/."
- "AUTHOR"="Xteq Systems"
- "CONTACTURL"="http://www.xteq.com"
- "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
- "COMMENT 1"=" "
- "COMMENT 2"="Thanks to CptSiskoX for the settings, the idea and his help."
-
-
- sP="HKCU\Software\Yahoo\Pager\"
- sV1="IM Enter Sends Message"
- Sub Plugin_Initialize
- if RegPathExists(sP) then
- i=RegReadValue(sP & sV1)
- if i=1 then SetUiElement 1,true
- else
- Call Disable()
- end if
- End Sub
-
-
- Sub Plugin_CheckData(ElementIndex)
- End Sub
-
-
-
- Sub Plugin_Apply(ElementIndex,ElementSubIndex)
- b=GetUIElement(1)
- if b=true then
- i="1"
- else
- i="0"
- end if
- Call RegWriteValue(sP & sV1,i,2)
-
- End Sub
-
-
- Sub Plugin_Terminate
- End Sub
-
-
-
-